home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _D4D06378C909463DBB9E3E8C58DB0873 < prev    next >
Encoding:
Text File  |  2006-08-04  |  1.1 KB  |  40 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 9',
  9.         'Host Version': u'9.00'
  10.         }
  11.  
  12. def Preset_Texture():
  13.     return {
  14.         'Ambience': 0, 
  15.         'Angle': 243, 
  16.         'Color': (255,255,255), 
  17.         'Depth': 1, 
  18.         'Elevation': 31, 
  19.         'Intensity': 50, 
  20.         'Shininess': 0, 
  21.         'Size': 400, 
  22.         'Smoothness': 40, 
  23.         'TextureName': u'Corel_15_012', 
  24.         'GeneralSettings': {
  25.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  26.             'DialogPlacement': {
  27.                 'ShowMaximized': False, 
  28.                 'Rect': ((0,0), 0, 0)
  29.                 }, 
  30.             'PreviewVisible': True, 
  31.             'AutoProof': False, 
  32.             'AutoActionMode': App.Constants.AutoActionMode.Match
  33.             }
  34.         }
  35.  
  36. def Do(Environment):
  37.     # Texture
  38.     App.Do( Environment, 'Texture',         Preset_Texture())
  39.  
  40.